func runtime.cheaprand

15 uses

	runtime (current package)
		iface.go#L483: 	if cheaprand()&1023 != 0 {
		iface.go#L490: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		iface.go#L583: 	if cheaprand()&1023 != 0 {
		iface.go#L592: 	if cheaprand()&uint32(oldC.Mask) != 0 {
		mbitmap.go#L760: 	off := alignUp(uintptr(cheaprand())%dataSize, goarch.PtrSize)
		mbitmap.go#L767: 	size -= alignDown(uintptr(cheaprand())%size, goarch.PtrSize)
		mprof.go#L692: 	if int64(cheaprand())%lt.timeRate == 0 {
		mprof.go#L696: 	if rate > 0 && int64(cheaprand())%rate == 0 {
		proc.go#L3706: 		for enum := stealOrder.start(cheaprand()); !enum.done(); enum.next() {
		proc.go#L5118: 	newg.trackingSeq = uint8(cheaprand())
		rand.go#L227: func cheaprand() uint32 {
		rand.go#L272: 	return int64(cheaprand())<<31 ^ int64(cheaprand())
		rand.go#L293: 	return uint32((uint64(cheaprand()) * uint64(n)) >> 32)
		sema.go#L369: 	s.ticket = cheaprand() | 1